home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS05.ADF / IFF / compiler.h < prev    next >
C/C++ Source or Header  |  1986-04-20  |  1KB  |  33 lines

  1.  
  2. #ifndef COMPILER_H
  3. #define COMPILER_H
  4. /*** compiler.h *********************************************************/
  5. /*  Steve Shaw                               1/29/86 */
  6. /*  Portability file to handle compiler idiosyncrasies.               */
  7. /*  Version: Lattice 3.03 cross-compiler for the Amiga from the IBM PC. */
  8. /*                                                                      */ 
  9. /* This software is in the public domain.                               */ 
  10. /*                                                                      */ 
  11. /************************************************************************/
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include "exec/types.h"
  15. #endif
  16.  
  17.  
  18. /* NOTE  --  NOTE  --  NOTE  --  NOTE  --  NOTE
  19.  * Some C compilers can handle Function Declarations with Argument Types
  20.  * (FDwAT) like this:
  21.  *     extern LONG Seek(BPTR, LONG, LONG)
  22.  * while others choke unless you just say
  23.  *     extern LONG Seek()
  24.  *
  25.  * Comment out the #define FDwAT if you have a compiler that chokes. */
  26.  
  27.  
  28.  
  29. /* #define FDwAT    COMMENTED OUT BECAUSE GREENHILLS CANT TAKE IT */
  30.  
  31. #endif COMPILER_H
  32.  
  33.